// Minutes in hours
// By DreamVB 23:18 20/10/2016

#include <iostream>

using namespace std;
using std::cout;
using std::endl;

int main(int argc, char *argv[]){
	double hours = 0;

	cout << "Calculate minutes in hours" << endl;
	cout << "Enter hours : ";
	cin >> hours;

	//Output answer
	cout << endl;
	cout << "There are " << (hours * 60) << " minutes in " << hours << " hours" << endl;

	system("pause");
	return 0;
}